home *** CD-ROM | disk | FTP | other *** search
/ PCBoard 15.1 Demo / PCBoard v15.1 DEMO - Clark Dev. Co (1994) - Disk 1 of 1.imd / PCBDISK.EXE / PCBVIEW.BAT < prev    next >
Encoding:
DOS Batch File  |  1994-02-14  |  455 b   |  32 lines

  1. @echo off
  2. testfile %1 arc zip pak txt
  3. if errorlevel == 98 goto error
  4. if errorlevel == 4 goto txt
  5. if errorlevel == 3 goto pak
  6. if errorlevel == 2 goto zip
  7. if errorlevel == 1 goto arc
  8. goto end
  9.  
  10. :txt
  11. copy %1 pcbview.txt
  12. goto end
  13.  
  14. :arc
  15. viewarch %1
  16. goto end
  17.  
  18. :zip
  19. viewzip %1
  20. goto end
  21.  
  22. :pak
  23. pak v %1 > pcbview.txt
  24. goto end
  25.  
  26. :error
  27. echo. >pcbview.txt
  28. echo @X0CSorry, @FIRST@, this file is not viewable. >>pcbview.txt
  29. goto end
  30.  
  31. :end
  32.